Luca Ferroni
**Software Libero per i territori**
In [6]:
print("Hello students!")
students = ['Emanuele', 'Simone',
'Elena', 'Gianluca',
'Paolo', 'Simone0',
'Sonia']
students = []
students.append('Patrizia')
students += ['Monica']
for s in students:
print("Ciao {}".format(s))
print("Ciao %s" % s)
In [ ]: